@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
18 lines (15 loc) • 441 B
text/typescript
import { createStyles } from 'antd-style';
export const useConfigPanelStyles = createStyles(({ css, token }) => ({
dragOver: css`
transform: scale(1.02);
border-color: ${token.colorPrimary} ;
box-shadow: 0 0 0 2px ${token.colorPrimary}20;
transition: transform 0.2s ease;
`,
dragTransition: css`
transition:
transform 0.2s ease,
border-color 0.2s ease,
box-shadow 0.2s ease;
`,
}));